summaryrefslogtreecommitdiff
path: root/src/pages/[locale]/furthsettins/scotsoun/index.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+joeacarstairs@users.noreply.github.com>2025-04-13 08:35:31 +0100
committerGitHub <noreply@github.com>2025-04-13 08:35:31 +0100
commit0dd5226bb52773f0f034f31f68f2439ae2f18fe3 (patch)
tree00dd82d1ae955d8a3ee90707681aafe48607e85a /src/pages/[locale]/furthsettins/scotsoun/index.astro
parent4a9ad67f284f6b5e96f5708a1fe9a2ff7417c766 (diff)
parent3d5bdc40809c5290342d7f269cfe845a6f2b3b4b (diff)
Merge pull request #122 from joeacarstairs/staging
discontinue furthsettins
Diffstat (limited to 'src/pages/[locale]/furthsettins/scotsoun/index.astro')
-rw-r--r--src/pages/[locale]/furthsettins/scotsoun/index.astro23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/pages/[locale]/furthsettins/scotsoun/index.astro b/src/pages/[locale]/furthsettins/scotsoun/index.astro
deleted file mode 100644
index 26f1f13..0000000
--- a/src/pages/[locale]/furthsettins/scotsoun/index.astro
+++ /dev/null
@@ -1,23 +0,0 @@
----
-import Page from '$layouts/Page.astro';
-import localeStaticPaths from '$lib/localeStaticPaths';
-import translate from '$i18n/translate';
-import tPage from '$i18n/translations/pages/scotsounGallery';
-import type Locale from '$types/Locale';
-import ScotsounCdGallery from '$components/ScotsounCdGallery.astro';
-
-export async function getStaticPaths() {
- return localeStaticPaths;
-}
-
-const locale = Astro.params.locale as Locale;
-const t = translate(locale);
----
-
-<Page title={t(tPage, { key: 'title' })}>
- <section>
- <h1>Scotsoun</h1>
- <p>{t(tPage, { key: 'about-scotsoun' })}</p>
- <ScotsounCdGallery />
- </section>
-</Page>